home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr47 / lzpip103.zip / MAKEFILE < prev    next >
Text File  |  1994-03-14  |  971b  |  36 lines

  1. CC    = cc
  2. CFLAGS    = -O -s
  3.  
  4. OBJZIP    = dzmain.o lzerror.o crc32.o diszip.o\
  5.     zippipe.o deflate.o trees.o bits.o
  6.  
  7. OBJLZW    = doz.o lzerror.o compress.o unlzw.o
  8.  
  9. .c.o:
  10.     $(CC) $(CFLAGS) -c $<
  11.  
  12. all:    dogzip    doz
  13.  
  14. clean:
  15.     rm *.o *.b doz dogzip core
  16.  
  17. doz:    $(OBJLZW)
  18.     $(CC) $(CFLAGS) -o $* $(OBJLZW)
  19.  
  20. dogzip:    $(OBJZIP)
  21.     $(CC) $(CFLAGS) -o $* $(OBJZIP)
  22.  
  23. lzerror.o:    lzerror.c
  24.  
  25. doz.o:        doz.c      modern.h lzpipe.h
  26. compress.o:    compress.c modern.h lzpipe.h lzwbits.h
  27. unlzw.o:    unlzw.c    modern.h lzpipe.h lzwbits.h
  28.  
  29. dzmain.o:    dzmain.c   modern.h lzpipe.h
  30. diszip.o:    diszip.c   modern.h lzpipe.h stdinc.h zipdefs.h crc32.h
  31. zippipe.o:    zippipe.c  modern.h lzpipe.h zalloc.h zipdefs.h zipguts.h oscode.h crc32.h
  32. deflate.o:    deflate.c  modern.h lzpipe.h zalloc.h zipdefs.h zipguts.h
  33. trees.o:    trees.c    modern.h lzpipe.h zalloc.h zipdefs.h zipguts.h
  34. bits.o:        bits.c     modern.h lzpipe.h zalloc.h zipdefs.h zipguts.h stdinc.h
  35. crc32.o:    crc32.c    modern.h crc32.h
  36.